找传奇、传世资源到传世资源站!

pygame画线

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

pygame画线
from clipboard
import pygamefrom pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((600,500))
pygame.display.set_caption("Drawing Lines")
while True:
    for event in pygame.event.get():
        if event.type in (QUIT,KEYDOWN):
            sys.exit()
    screen.fill((0,80,0))
    #draw the line
    color=100,255,200
    width=8
    pygame.draw.line(screen,color,(100,100),(500,400),width)
    pygame.display.update()
        

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复